Awaiting Confrimation
Awaiting Confrimation
prepare("select * from booking_table where booking_id = '$id'") ; $getdetails->execute() ; $row = $getdetails->fetch(pdo::FETCH_ASSOC) ; $chkstatus= $row['confirm_status'] ; if($chkstatus == 'NOT CONFIRM') { $msg = "This Order has not been Confrimed by the Appropriate Authority, get the Manager to confirm it before you proceed" ; //header("location: cfbook.php?bk=$id") ; } else { header("location: bksummary.php?bk=$id") ; } } ?>